*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  
}



#loading-page{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #0c1b21;
}


.loader{
  position: relative;
  width: 250px;
  height: 250px;
  filter: url(#gooey);
  left: -10%;
  animation: rotate 16s linear infinite;

}

.loader span{
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 display: block;
 transform: rotate(calc(45deg * var(--i)));
 

}

.loader span::before{
  content: '';
  position: absolute;
  top: 0;
  left:calc(50% - 20px);
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #c7eeff,#03a9f4);
  border-radius: 50%;
  box-shadow: 0 0 30px #00bcd4;
  
}

.rotate{
  animation: rotate 4s ease-in-out infinite;
  animation-delay: calc(-0.2s * var(--j));
}

@keyframes rotate{
  0% {
    transform: rotate(0deg);}
    100% {
      transform: rotate(360deg);}
}

